home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 15 / CU Amiga Magazine's Super CD-ROM 15 (1997)(EMAP Images)(GB)[!][issue 1997-10].iso / CUCD / Graphics / Ghostscript / source / icharout.h < prev    next >
Text File  |  1996-03-25  |  2KB  |  49 lines

  1. /* Copyright (C) 1996 Aladdin Enterprises.  All rights reserved.
  2.   
  3.   This file is part of Aladdin Ghostscript.
  4.   
  5.   Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND.  No author
  6.   or distributor accepts any responsibility for the consequences of using it,
  7.   or for whether it serves any particular purpose or works at all, unless he
  8.   or she says so in writing.  Refer to the Aladdin Ghostscript Free Public
  9.   License (the "License") for full details.
  10.   
  11.   Every copy of Aladdin Ghostscript must include a copy of the License,
  12.   normally in a plain ASCII text file named PUBLIC.  The License grants you
  13.   the right to copy, modify and redistribute Aladdin Ghostscript, but only
  14.   under certain conditions described in the License.  Among other things, the
  15.   License requires that the copyright notice and this notice be preserved on
  16.   all copies.
  17. */
  18.  
  19. /* icharout.h */
  20. /* Interface to zcharout.c */
  21.  
  22. /* Execute an outline defined by a PostScript procedure. */
  23. int zchar_exec_char_proc(P1(os_ptr));
  24.  
  25. /*
  26.  * Get the metrics for a character from the Metrics dictionary of a base
  27.  * font.  If present, store the l.s.b. in psbw[0,1] and the width in
  28.  * psbw[2,3].
  29.  */
  30. typedef enum {
  31.     metricsNone = 0,
  32.     metricsWidthOnly = 1,
  33.     metricsSideBearingAndWidth = 2
  34. } metrics_present;
  35. int /*metrics_present*/
  36.   zchar_get_metrics(P3(const gs_font_base *pbfont, const ref *pcnref,
  37.                float psbw[4]));
  38.  
  39. /*
  40.  * Consult Metrics2 and CDevProc, and call setcachedevice[2].  Return
  41.  * o_push_estack if we had to call a CDevProc, or if we are skipping the
  42.  * rendering process (only getting the metrics).
  43.  */
  44. int zchar_set_cache(P8(os_ptr op, const gs_font_base *pbfont,
  45.                const ref *pcnref, const float psb[2],
  46.                const float pwidth[2], const gs_rect *pbbox,
  47.                int (*cont_fill)(P1(os_ptr)),
  48.                int (*cont_stroke)(P1(os_ptr))));
  49.